home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / umich / music / midiplay.lzh / MIDIPLAY.H < prev    next >
C/C++ Source or Header  |  1991-11-30  |  401b  |  26 lines

  1. /*
  2.  * File: mp_gbls.h
  3.  * SGoldthorpe    27-May-91
  4.  *
  5.  * Version 0.5 by Piet van Oostrum <piet@cs.ruu.nl>
  6.  * November 1991.
  7.  */
  8.  
  9. /*
  10.  * HEADER FILE FOR MIDIPLAY
  11.  */
  12.  
  13. /* COMPILER MANIFESTS */
  14. #define    RELEASE        0
  15. #define    VERSION        5
  16. #define    DATE        "17-Nov-91"
  17.  
  18. #define    BUFFER_SIZE    65535
  19. #define    MAX_TRACKS    32
  20.  
  21. #define    BOOL    int
  22. #ifndef    FALSE
  23. #define    FALSE    (0)
  24. #define    TRUE    !FALSE
  25. #endif
  26.